home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 / Ham Radio 2000.iso / ham2000 / tcp_ip / os2 / pmnos11s / files.h < prev    next >
C/C++ Source or Header  |  1992-10-31  |  3KB  |  61 lines

  1. #ifndef    _FILES_H
  2. #define    _FILES_H
  3.  
  4. #define    FTP_READ    1    /* Read files */
  5. #define    FTP_CREATE    2    /* Create new files */
  6. #define    FTP_WRITE    4    /* Overwrite or delete existing files */
  7. #define    AX25_CMD    8    /* AX.25 gateway operation allowed */
  8. #define    TELNET_CMD    16    /* Telnet gateway operation allowed */
  9. #define    NETROM_CMD    32    /* NET/ROM gateway operation allowed */
  10. #define    SYSOP_CMD    64    /* Remote sysop access allowed */
  11. #define    EXCLUDED_CMD    128    /* This user is banned from the BBS */
  12. #define    PPP_ACCESS_PRIV    0x0100    /* Priv bit for PPP connection */
  13. #define    PPP_PWD_LOOKUP    0x0200    /* Priv bit for peerID/pass lookup */
  14. #define FILE_PATH_SIZE 128
  15.  
  16. /* External definitions for configuration-dependent file names set in
  17.  * files.c
  18.  */
  19. extern char *Startup;    /* Initialization file */
  20. extern char *Userfile;    /* Authorized FTP users and passwords */
  21. extern char *Hostfile;    /* Remote FTP user and password */
  22. extern char *Maillog;    /* mail log */
  23. extern char *Mailspool;    /* Incoming mail */
  24. extern char *Mailqdir;    /* Outgoing mail spool */
  25. extern char *Mailqueue;    /* Outgoing mail work files */
  26. extern char *Routeqdir;    /* queue for router */
  27. extern char *Alias;    /* the alias file */
  28. extern char *Dfile;    /* Domain cache */
  29. extern char *Fdir;    /* Finger info directory */
  30. extern char *Arealist;        /* List of message areas */
  31. extern char *Helpdir;        /* Mailbox help file directory */
  32. extern char *Rewritefile;    /* Address rewrite file */
  33. extern char *Signature;        /* Mail signature file directory */
  34. extern char *Popusers;        /* POP user and password file */
  35. extern char *Newsdir;        /* News messages and NNTP data */
  36. extern char *Forwardfile;    /* Mail forwarding file */
  37. extern char *Historyfile;    /* Message ID history file */
  38. extern char *UDefaults;     /* User preference file */
  39. extern char *UDefbak;       /* Backup of preference file */
  40. extern char *Netromfile;    /* Netrom node save file */
  41. extern char *Onexit;        /* Cmds executed on exit */
  42. extern char *Expirefile;    /* Message expiration control file */
  43. extern char *Convers;       /* Convers configuration file */
  44. extern char *Active;
  45. extern char *Pointer;
  46. extern char *NInfo;
  47. extern char *Nhelp;
  48. extern char *History;
  49. extern char *Forward;
  50. extern char *Poll;
  51.  
  52. void initroot __ARGS((char *root));
  53. int userlogin __ARGS((char *name,char *pass,char **path,int len,int *pwdignore));
  54. char *rootdircat __ARGS((char *filename));
  55. char *userlookup __ARGS((char *username,char **password,char **directory,
  56.             int *permission,int32 *ip_address));
  57. int permcheck __ARGS((char *path,int perms,int op,char *file));
  58.  
  59. #endif    /* _FILES_H */
  60.  
  61.